Skip to content

Conversation

@ItsEeleeya
Copy link
Contributor

@ItsEeleeya ItsEeleeya commented Nov 10, 2025

This PR adds a new recording setting: Default project name which allows for customizing the default project and file name using a custom template with placeholders.
There are several place holders for different info about a recording, and a custom date placeholder which accepts a moment format.
Renaming the project through the editor still has the same behavior, only the pretty name changes, not the actual name of the file.

Cap

There's a new module update_project_names which updates the name of all previous project files to use their pretty name instead. Once done, it adds uuid_projects_migrated to the data store.

Other changes:

  • Added a little blur to the collapsible animation
  • Fixed an issue with the reset button on the ExcludedWindowsCard in General Settings where the text would spill out on a certain viewport size.

Note: I'm not sure how to format the Cargo.toml file, I don't even know why it changed.

Summary by CodeRabbit

  • New Features

    • Customizable default project name template in Settings with live preview, save/reset.
    • Frontend command to format project names for previews and exports.
    • One-time startup migration renames legacy UUID project folders to readable, sanitized names.
  • Improvements

    • Filename sanitization and collision-avoidance for recordings and uploads.
    • Date/time token support in project-name templates with custom formats.
  • Tweaks

    • Clearer screen-capture target labels (Display / Window / Area).
    • Collapsible UI animations now include a subtle blur.
  • Additions

    • New UI icon available for use.

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Nov 10, 2025

Walkthrough

Adds project-name templating (moment-style → chrono), a Tauri command to format names, persisted default template setting and UI, a one-time migration renaming UUID project folders to sanitized unique names, utilities for token conversion and filename uniqueness (Aho‑Corasick), plus dependency and UI/type tweaks.

Changes

Cohort / File(s) Summary
Workspace & root manifest
Cargo.toml
Reflowed workspace.members to a multiline array; added aho-corasick = "1.1.4" to workspace dependencies and enabled chrono feature for specta.
Desktop app manifest
apps/desktop/src-tauri/Cargo.toml
Added dependencies: regex = "1.10.4", sanitize-filename = "0.6.0", and aho-corasick.workspace = true; minor formatting tweaks.
Settings storage
apps/desktop/src-tauri/src/general_settings.rs
Added default_project_name_template: Option<String> with serde default and Default impl set to None.
TAURI wiring & startup
apps/desktop/src-tauri/src/lib.rs
New format_project_name TAURI command; registered in commands and update_project_names::migrate_if_needed(&app) invoked during setup; new update_project_names module added.
Project name formatting & recording flow
apps/desktop/src-tauri/src/recording.rs
Added format_project_name function; derive sanitized project_name (used for filenames, recording dirs, metadata, and instant upload pre-creation); integrates moment→chrono conversion, Aho‑Corasick replacements and regex; updated recording start flow to use project_name.
Migration module
apps/desktop/src-tauri/src/update_project_names.rs
New one-time migration: detect UUID-named projects (fast_is_project_filename_uuid), compute sanitized pretty names, ensure unique filenames, rename directories with concurrency control, logging, aggregation, and unit tests.
Frontend UI & bindings
apps/desktop/src/routes/(window-chrome)/settings/general.tsx, apps/desktop/src/utils/tauri.ts
Added DefaultProjectNameCard UI with live preview/reset/save; DEFAULT_PROJECT_NAME_TEMPLATE constant; added formatProjectName frontend TAURI binding and `defaultProjectNameTemplate?: string
Utilities crate
crates/utils/Cargo.toml, crates/utils/src/lib.rs
Enabled aho-corasick workspace usage; added ensure_unique_filename / ensure_unique_filename_with_attempts and moment_format_to_chrono (Aho‑Corasick automaton) with unit tests.
Recording helper
crates/recording/src/sources/screen_capture/mod.rs
Added pub fn kind_str(&self) -> &str on ScreenCaptureTarget.
Dev / UI tweaks
crates/utils/Cargo.toml, packages/ui-solid/*
Added tempfile = "3" dev-dependency; added blur to collapsible animations in Tailwind; added IconCapAuto global decl in packages/ui-solid/src/auto-imports.d.ts.

Sequence Diagram(s)

sequenceDiagram
    participant User
    participant Frontend as Frontend (Settings / Recorder UI)
    participant Tauri as Tauri App
    participant Recording as Recording Module
    participant Utils as Utils crate

    User->>Frontend: Edit default template / request preview
    Frontend->>Tauri: call formatProjectName(template, target, kind, mode, datetime)
    Tauri->>Recording: format_project_name(...)
    Recording->>Utils: moment_format_to_chrono(format)
    Utils-->>Recording: chrono_format
    Recording->>Recording: placeholder substitutions (Aho‑Corasick, regex)
    Recording-->>Tauri: formatted project name
    Tauri-->>Frontend: preview/display result

    Note over Tauri,Recording: App startup one-time migration
    Tauri->>Recording: migrate_if_needed()
    Recording->>Recording: enumerate UUID-named project dirs
    Recording->>Utils: ensure_unique_filename(pretty_name, parent_dir)
    Utils-->>Recording: unique filename
    Recording->>Recording: rename directory (or skip/fail)
    Recording-->>Tauri: migration result
Loading

Estimated code review effort

🎯 4 (Complex) | ⏱️ ~55 minutes

  • Files needing extra attention:
    • apps/desktop/src-tauri/src/recording.rs — templating logic, Aho‑Corasick usage, datetime handling, and integration into recording lifecycle.
    • apps/desktop/src-tauri/src/update_project_names.rs — filesystem rename logic, concurrency, migration flag persistence, error aggregation, and tests.
    • crates/utils/src/lib.rs — Aho‑Corasick automaton construction and correctness of moment_format_to_chrono and filename uniqueness behavior.

Possibly related PRs

Suggested reviewers

  • oscartbeaumont
  • Brendonovich

Poem

🐇 I nibble tokens, stitch time into name,
Aho hops quick, replacing each plain,
UUID shells shelved for names that rhyme,
Sanitized and unique — tidy every time,
The rabbit saves defaults and hums a chime.

Pre-merge checks and finishing touches

✅ Passed checks (3 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The PR title accurately reflects the main objective: adding a feature to customize default project names and migrating UUID-based project file names to pretty names.
Docstring Coverage ✅ Passed Docstring coverage is 100.00% which is sufficient. The required threshold is 80.00%.
✨ Finishing touches
  • 📝 Generate docstrings
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment

📜 Recent review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between bd32090 and 897f777.

📒 Files selected for processing (1)
  • apps/desktop/src-tauri/src/lib.rs (4 hunks)
🧰 Additional context used
🧬 Code graph analysis (1)
apps/desktop/src-tauri/src/lib.rs (2)
apps/desktop/src-tauri/src/recording.rs (2)
  • format_project_name (396-469)
  • target_name (266-271)
apps/desktop/src-tauri/src/update_project_names.rs (1)
  • migrate_if_needed (16-41)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
  • GitHub Check: Clippy (aarch64-apple-darwin, macos-latest)
🔇 Additional comments (4)
apps/desktop/src-tauri/src/lib.rs (4)

28-28: LGTM!

The module declaration is properly positioned and follows the existing pattern.


2302-2303: LGTM!

Both commands are correctly registered for frontend invocation. The format_project_name command is properly defined below (lines 3062-3078), and editor_delete_project exists earlier in the file.


2447-2450: LGTM! Past review concern addressed correctly.

The migration error handling now logs failures without preventing app startup, which is the correct approach for this one-time cosmetic migration. This matches the pattern suggested in the previous review.


3062-3078: LGTM!

The command is a clean wrapper that correctly delegates to the underlying recording::format_project_name function. Parameter conversion from Option<String> to Option<&str> via as_deref() is appropriate, and all arguments are properly forwarded.


Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 3

🧹 Nitpick comments (4)
crates/recording/src/sources/screen_capture/mod.rs (1)

197-203: LGTM! Clean implementation.

The method correctly returns string representations for all ScreenCaptureTarget variants. The implementation is straightforward and appropriate for providing human-readable labels.

Optional: Consider adding unit tests.

Since this is a new public method, you may want to add a simple test to verify the string representations:

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_kind_str() {
        let display = ScreenCaptureTarget::Display { id: DisplayId::default() };
        assert_eq!(display.kind_str(), "Display");

        let window = ScreenCaptureTarget::Window { id: WindowId::default() };
        assert_eq!(window.kind_str(), "Window");

        let area = ScreenCaptureTarget::Area {
            screen: DisplayId::default(),
            bounds: LogicalBounds::new(LogicalPosition::new(0.0, 0.0), LogicalSize::new(100.0, 100.0)),
        };
        assert_eq!(area.kind_str(), "Area");
    }
}
apps/desktop/src/routes/(window-chrome)/settings/general.tsx (2)

653-660: Consider relaxing the minimum length constraint.

The isSaveDisabled function prevents saving templates with length <= 3, which might be too restrictive. Valid templates like "{D}" (day of month) have only 3 characters but are legitimate use cases.

Consider removing or reducing the minimum length check:

 const isSaveDisabled = () => {
   const input = inputValue();
   return (
     !input ||
-    input === (props.value ?? DEFAULT_PROJECT_NAME_TEMPLATE) ||
-    input.length <= 3
+    input === (props.value ?? DEFAULT_PROJECT_NAME_TEMPLATE)
   );
 };

Alternatively, validate that the template contains at least one placeholder instead of checking raw length.


735-741: Consider adding blur animation to Collapsible for smoother transitions.

The PR description mentions adding blur to the collapsible animation. The current implementation uses opacity transitions, but you may want to add a blur effect for enhanced visual polish, consistent with the PR objectives.

Add blur to the animation if desired:

-<Collapsible.Content class="opacity-0 transition animate-collapsible-up ui-expanded:animate-collapsible-down ui-expanded:opacity-100 text-xs text-gray-12 space-y-3 px-1 pb-2">
+<Collapsible.Content class="opacity-0 blur-sm transition animate-collapsible-up ui-expanded:animate-collapsible-down ui-expanded:opacity-100 ui-expanded:blur-0 text-xs text-gray-12 space-y-3 px-1 pb-2">
crates/utils/src/lib.rs (1)

200-222: Consider expanding test coverage for edge cases.

The current test validates basic conversion and the borrowed case, but could benefit from additional test cases to ensure robustness.

Add tests for additional scenarios:

#[test]
fn test_moment_format_edge_cases() {
    // Test overlapping patterns
    assert_eq!(moment_format_to_chrono("MMMMM"), "%BM");
    
    // Test partial matches
    assert_eq!(moment_format_to_chrono("YYY"), "YY%y");
    
    // Test all placeholder types
    assert_eq!(moment_format_to_chrono("hh:mm:ss A"), "%I:%M:%S %p");
    assert_eq!(moment_format_to_chrono("HH:mm:ss"), "%H:%M:%S");
    
    // Test no-op with special characters
    assert_eq!(moment_format_to_chrono("---///"), "---///");
}
📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 3cfb332 and a42da8c.

⛔ Files ignored due to path filters (1)
  • Cargo.lock is excluded by !**/*.lock
📒 Files selected for processing (13)
  • Cargo.toml (3 hunks)
  • apps/desktop/src-tauri/Cargo.toml (4 hunks)
  • apps/desktop/src-tauri/src/general_settings.rs (2 hunks)
  • apps/desktop/src-tauri/src/lib.rs (4 hunks)
  • apps/desktop/src-tauri/src/recording.rs (6 hunks)
  • apps/desktop/src-tauri/src/update_project_names.rs (1 hunks)
  • apps/desktop/src/routes/(window-chrome)/settings/general.tsx (5 hunks)
  • apps/desktop/src/utils/tauri.ts (2 hunks)
  • crates/recording/src/sources/screen_capture/mod.rs (1 hunks)
  • crates/utils/Cargo.toml (2 hunks)
  • crates/utils/src/lib.rs (2 hunks)
  • packages/ui-solid/src/auto-imports.d.ts (1 hunks)
  • packages/ui-solid/tailwind.config.js (1 hunks)
🧰 Additional context used
📓 Path-based instructions (5)
**/*.{ts,tsx}

📄 CodeRabbit inference engine (AGENTS.md)

**/*.{ts,tsx}: Use a 2-space indent for TypeScript code.
Use Biome for formatting and linting TypeScript/JavaScript files by running pnpm format.

Files:

  • apps/desktop/src/utils/tauri.ts
  • packages/ui-solid/src/auto-imports.d.ts
  • apps/desktop/src/routes/(window-chrome)/settings/general.tsx
**/*.{ts,tsx,js,jsx}

📄 CodeRabbit inference engine (AGENTS.md)

**/*.{ts,tsx,js,jsx}: Use kebab-case for filenames for TypeScript/JavaScript modules (e.g., user-menu.tsx).
Use PascalCase for React/Solid components.

Files:

  • apps/desktop/src/utils/tauri.ts
  • packages/ui-solid/src/auto-imports.d.ts
  • packages/ui-solid/tailwind.config.js
  • apps/desktop/src/routes/(window-chrome)/settings/general.tsx
**/tauri.ts

📄 CodeRabbit inference engine (AGENTS.md)

Do not edit auto-generated files named tauri.ts.

Files:

  • apps/desktop/src/utils/tauri.ts
**/*.rs

📄 CodeRabbit inference engine (AGENTS.md)

**/*.rs: Format Rust code using rustfmt and ensure all Rust code passes workspace-level clippy lints.
Rust modules should be named with snake_case, and crate directories should be in kebab-case.

Files:

  • apps/desktop/src-tauri/src/general_settings.rs
  • crates/recording/src/sources/screen_capture/mod.rs
  • apps/desktop/src-tauri/src/lib.rs
  • crates/utils/src/lib.rs
  • apps/desktop/src-tauri/src/recording.rs
  • apps/desktop/src-tauri/src/update_project_names.rs
crates/*/src/**/*

📄 CodeRabbit inference engine (AGENTS.md)

Rust crates should place tests within the src/ and/or a sibling tests/ directory for each crate inside crates/*.

Files:

  • crates/recording/src/sources/screen_capture/mod.rs
  • crates/utils/src/lib.rs
🧠 Learnings (2)
📚 Learning: 2025-09-22T14:19:56.010Z
Learnt from: CR
Repo: CapSoftware/Cap PR: 0
File: AGENTS.md:0-0
Timestamp: 2025-09-22T14:19:56.010Z
Learning: Applies to **/tauri.ts : Do not edit auto-generated files named `tauri.ts`.

Applied to files:

  • apps/desktop/src/utils/tauri.ts
📚 Learning: 2025-09-22T14:19:56.010Z
Learnt from: CR
Repo: CapSoftware/Cap PR: 0
File: AGENTS.md:0-0
Timestamp: 2025-09-22T14:19:56.010Z
Learning: Applies to packages/ui/**/*.{ts,tsx,js,jsx} : Component files in `packages/ui` should use PascalCase naming if they define React/Solid components.

Applied to files:

  • packages/ui-solid/src/auto-imports.d.ts
🧬 Code graph analysis (5)
crates/recording/src/sources/screen_capture/mod.rs (1)
apps/desktop/src/utils/tauri.ts (1)
  • ScreenCaptureTarget (470-470)
apps/desktop/src-tauri/src/lib.rs (2)
apps/desktop/src-tauri/src/recording.rs (2)
  • format_project_name (305-378)
  • target_name (183-188)
apps/desktop/src-tauri/src/update_project_names.rs (1)
  • migrate_if_needed (12-37)
apps/desktop/src-tauri/src/recording.rs (2)
crates/utils/src/lib.rs (3)
  • ensure_dir (16-19)
  • moment_format_to_chrono (166-198)
  • ensure_unique_filename (45-91)
apps/desktop/src-tauri/src/lib.rs (12)
  • std (1388-1406)
  • std (1431-1453)
  • format_project_name (2648-2662)
  • new (349-351)
  • new (766-770)
  • new (1326-1356)
  • app (1169-1170)
  • app (2228-2228)
  • app (2259-2259)
  • app (2320-2320)
  • app (2326-2326)
  • app (2550-2551)
apps/desktop/src-tauri/src/update_project_names.rs (3)
apps/desktop/src-tauri/src/lib.rs (12)
  • std (1388-1406)
  • std (1431-1453)
  • recordings_path (2604-2608)
  • app (1169-1170)
  • app (2228-2228)
  • app (2259-2259)
  • app (2320-2320)
  • app (2326-2326)
  • app (2550-2551)
  • new (349-351)
  • new (766-770)
  • new (1326-1356)
crates/project/src/meta.rs (1)
  • load_for_project (147-153)
crates/utils/src/lib.rs (1)
  • ensure_unique_filename (45-91)
apps/desktop/src/routes/(window-chrome)/settings/general.tsx (3)
apps/desktop/src/utils/tauri.ts (1)
  • commands (7-295)
packages/ui-solid/src/Button.tsx (1)
  • Button (40-50)
apps/desktop/src/routes/editor/ui.tsx (1)
  • Input (149-159)
🔇 Additional comments (16)
packages/ui-solid/src/auto-imports.d.ts (1)

1-11: This is an auto-generated file—verify it should be committed to version control.

Line 5 indicates this file is generated by unplugin-auto-import. Auto-generated files are typically excluded from version control (via .gitignore) and should not be manually edited. The quote style change on Line 11 likely stems from tool regeneration rather than an intentional code change.

Before merging, confirm:

  1. Whether this file should be committed or added to .gitignore
  2. If committed, whether the changes come from an updated auto-import configuration or tool version
packages/ui-solid/tailwind.config.js (1)

92-97: LGTM! Blur effect added to collapsible animations.

The blur transition enhances the visual feedback during collapse/expand animations. The implementation is consistent across both keyframes.

Note that blur filters can be GPU-intensive. If performance issues arise on lower-end devices with multiple collapsibles animating simultaneously, consider reducing the blur amount or making it optional.

crates/utils/Cargo.toml (1)

10-18: LGTM: Formatting and dependency additions are appropriate.

The Windows feature list reformatting improves readability without changing functionality, and the aho-corasick workspace dependency aligns with the new string pattern matching utilities introduced in this crate.

apps/desktop/src-tauri/Cargo.toml (1)

22-28: LGTM: Dependency additions support new project naming features.

The added dependencies (regex for pattern matching, sanitize-filename for safe filenames, and aho-corasick for efficient string replacement) are appropriate for the project name formatting functionality introduced in this PR.

Also applies to: 63-63, 110-110, 118-118

apps/desktop/src-tauri/src/general_settings.rs (1)

123-124: LGTM: New setting field is properly integrated.

The default_project_name_template field is correctly declared with #[serde(default)], ensuring backward compatibility with existing configurations. The Option<String> type appropriately represents an optional user preference.

Cargo.toml (1)

3-8: LGTM: Workspace configuration changes are well-structured.

The multiline workspace members format improves maintainability. Adding "chrono" to specta features enables DateTime serialization for the format_project_name command, and the aho-corasick workspace dependency properly centralizes version management for the new string pattern matching functionality.

Also applies to: 30-30, 49-49

apps/desktop/src-tauri/src/lib.rs (4)

28-28: LGTM: Migration module properly integrated.

The update_project_names module is appropriately added to support the one-time project name migration.


1904-1905: LGTM: New commands properly registered.

The format_project_name command is correctly registered in the Tauri command set alongside the existing commands.


2646-2662: LGTM: Command implementation correctly delegates to business logic.

The format_project_name command properly delegates to the recording::format_project_name function, converting the optional template to a string reference as needed.


2054-2054: No issues found — migration implementation is robust.

The migration meets all three verification criteria:

  1. Idempotent: Checked via STORE_KEY on lines 19-25. If already migrated, the function returns immediately without re-running.

  2. Error logging: Migration failures are logged with tracing::error!() on line 28, while store operation failures propagate with ? operator on lines 17 and 33-34.

  3. Graceful degradation: Migration errors don't block app startup (lines 27-29 catch and log only). The STORE_KEY is marked true regardless, preventing retry loops on future startups.

The only errors that block startup are store access/save failures, which correctly indicate system-level issues that should prevent app initialization.

apps/desktop/src/routes/(window-chrome)/settings/general.tsx (3)

104-105: LGTM: Default template is well-chosen.

The default template "{target_name} ({target_kind}) {date} {time}" provides a good balance of information and readability for project names.


507-512: LGTM: Component integration is clean.

The DefaultProjectNameCard is properly integrated into the settings with appropriate value binding and change handler.


883-883: LGTM: Layout fix prevents button text overflow.

The flex-shrink-0 class properly fixes the layout issue where reset button text would spill out at certain viewport sizes, as mentioned in the PR objectives.

crates/utils/src/lib.rs (2)

45-91: LGTM: Well-implemented filename uniqueness helper.

The ensure_unique_filename function properly handles:

  • Files without extensions
  • Incremental numbering with clear formatting
  • Early return when no conflict exists
  • Reasonable loop limit (1000) to prevent infinite loops

The implementation is clear and well-documented.


166-198: LGTM: Efficient pattern conversion with good performance characteristics.

The moment_format_to_chrono function demonstrates excellent design:

  • Uses LazyLock for efficient static initialization of the automaton
  • LeftmostLongest matching correctly prioritizes longer patterns (e.g., "MMMM" before "MM")
  • Returns Cow::Borrowed when no replacements are needed, avoiding unnecessary allocations
  • Comprehensive documentation with examples
apps/desktop/src/utils/tauri.ts (1)

292-294: DateTime serialization is properly configured.

The chrono feature has been correctly added to specta in the workspace Cargo.toml (line 30), enabling proper serialization of Option<chrono::DateTime<chrono::Local>> to TypeScript's string | null. The function implementation in tauri.ts passes the datetime parameter directly through TAURI_INVOKE, allowing specta with the chrono feature to handle serialization automatically. No additional verification or testing is required—the configuration is correct.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

♻️ Duplicate comments (1)
apps/desktop/src-tauri/src/recording.rs (1)

263-324: The {target} placeholder concern appears addressed.

The past review comment flagged that {target} was mentioned in documentation but not implemented. The current documentation and example (line 290) correctly use {target_kind} and {target_name} as separate placeholders, which are implemented in the AhoCorasick patterns (lines 317-320). This appears to resolve the previous concern.

🧹 Nitpick comments (2)
apps/desktop/src-tauri/src/recording.rs (2)

24-24: Consider using std::sync::LazyLock for consistency.

The codebase already uses LazyLock in moment_format_to_chrono (from the relevant code snippets). For consistency and to use the more modern standard library feature (stable since Rust 1.80), consider replacing lazy_static! with LazyLock in the format_project_name function.


405-406: Consider removing redundant colon replacement.

The sanitize_filename::sanitize() call on line 406 should already handle filesystem-unsafe characters including colons. The explicit .replace(":", ".") on line 405 appears redundant, though it's harmless.

If you prefer to keep the explicit replacement for clarity, this is fine. Otherwise, you can simplify to:

-    let filename = project_name.replace(":", ".");
-    let filename = format!("{}.cap", sanitize_filename::sanitize(&filename));
+    let filename = format!("{}.cap", sanitize_filename::sanitize(&project_name));
📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between a42da8c and f72e79a.

📒 Files selected for processing (1)
  • apps/desktop/src-tauri/src/recording.rs (6 hunks)
🧰 Additional context used
📓 Path-based instructions (1)
**/*.rs

📄 CodeRabbit inference engine (AGENTS.md)

**/*.rs: Format Rust code using rustfmt and ensure all Rust code passes workspace-level clippy lints.
Rust modules should be named with snake_case, and crate directories should be in kebab-case.

Files:

  • apps/desktop/src-tauri/src/recording.rs
🧬 Code graph analysis (1)
apps/desktop/src-tauri/src/recording.rs (2)
crates/utils/src/lib.rs (3)
  • ensure_dir (16-19)
  • moment_format_to_chrono (166-198)
  • ensure_unique_filename (45-91)
apps/desktop/src-tauri/src/lib.rs (12)
  • std (1388-1406)
  • std (1431-1453)
  • format_project_name (2648-2662)
  • new (349-351)
  • new (766-770)
  • new (1326-1356)
  • app (1169-1170)
  • app (2228-2228)
  • app (2259-2259)
  • app (2320-2320)
  • app (2326-2326)
  • app (2550-2551)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
  • GitHub Check: Clippy (aarch64-apple-darwin, macos-latest)
🔇 Additional comments (1)
apps/desktop/src-tauri/src/recording.rs (1)

391-413: LGTM! Clean integration of template-based project naming.

The integration of format_project_name throughout start_recording is well-executed:

  • Retrieves the template from settings
  • Generates a sanitized, unique recording directory
  • Propagates the project name to metadata and upload info

Note: The target_name field in InProgressRecordingCommon (line 590) now holds the computed project_name rather than just the capture target's name, which extends its semantics while maintaining backward compatibility.

Also applies to: 435-435, 476-476, 590-590

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (1)
apps/desktop/src-tauri/src/recording.rs (1)

263-377: Consider using LazyLock for consistency and adding unit tests.

The function correctly implements template formatting with multiple placeholder types. Two improvements to consider:

  1. Consistency with utils crate: The cap_utils crate uses std::sync::LazyLock (see moment_format_to_chrono), but this function uses lazy_static!. For consistency, consider migrating to LazyLock:
-use lazy_static::lazy_static;
+use std::sync::LazyLock;

-    lazy_static! {
-        static ref DATE_REGEX: Regex = Regex::new(r"\{date(?::([^}]+))?\}").unwrap();
-        static ref TIME_REGEX: Regex = Regex::new(r"\{time(?::([^}]+))?\}").unwrap();
-        static ref MOMENT_REGEX: Regex = Regex::new(r"\{moment(?::([^}]+))?\}").unwrap();
-        static ref AC: aho_corasick::AhoCorasick = {
+    static DATE_REGEX: LazyLock<Regex> = LazyLock::new(|| Regex::new(r"\{date(?::([^}]+))?\}").unwrap());
+    static TIME_REGEX: LazyLock<Regex> = LazyLock::new(|| Regex::new(r"\{time(?::([^}]+))?\}").unwrap());
+    static MOMENT_REGEX: LazyLock<Regex> = LazyLock::new(|| Regex::new(r"\{moment(?::([^}]+))?\}").unwrap());
+    static AC: LazyLock<aho_corasick::AhoCorasick> = LazyLock::new(|| {
             aho_corasick::AhoCorasick::new(&[
                 "{recording_mode}",
                 "{mode}",
                 "{target_kind}",
                 "{target_name}",
             ])
             .expect("Failed to build AhoCorasick automaton")
-        };
-    }
+    });
  1. Unit test coverage: This function has multiple code paths (different placeholders, custom format specifiers, edge cases). Consider adding unit tests in the tests module to verify behavior with various templates, format specifiers, and edge cases.
📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between f72e79a and 56996e2.

📒 Files selected for processing (1)
  • apps/desktop/src-tauri/src/recording.rs (6 hunks)
🧰 Additional context used
📓 Path-based instructions (1)
**/*.rs

📄 CodeRabbit inference engine (AGENTS.md)

**/*.rs: Format Rust code using rustfmt and ensure all Rust code passes workspace-level clippy lints.
Rust modules should be named with snake_case, and crate directories should be in kebab-case.

Files:

  • apps/desktop/src-tauri/src/recording.rs
🧬 Code graph analysis (1)
apps/desktop/src-tauri/src/recording.rs (1)
crates/utils/src/lib.rs (3)
  • ensure_dir (16-19)
  • moment_format_to_chrono (166-198)
  • ensure_unique_filename (45-91)
🔇 Additional comments (2)
apps/desktop/src-tauri/src/recording.rs (2)

22-28: LGTM! Imports are appropriate for the new template formatting functionality.

The new imports support the template parsing and formatting infrastructure.


394-416: LGTM! Project name formatting and sanitization flow is well-structured.

The integration correctly formats the project name from the template, sanitizes it for filesystem compatibility, and ensures uniqueness. The explicit colon-to-period replacement before sanitization adds clarity even though sanitize_filename might handle it.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (4)
apps/desktop/src-tauri/Cargo.toml (1)

114-114: Clarify the commented feature syntax on line 114.

Line 114 has trailing commented-out code that appears to be incomplete feature specifications. This may confuse future maintainers. Consider either removing this comment or clarifying its intent.

-opentelemetry-otlp = "0.31.0"                                                 #{ version = , features = ["http-proto", "reqwest-client"] }
+opentelemetry-otlp = "0.31.0"
apps/desktop/src-tauri/src/recording.rs (3)

24-24: Consider using std::sync::LazyLock for consistency.

The lazy_static crate is used here, but the cap_utils crate uses std::sync::LazyLock (stable since Rust 1.80). Using LazyLock would improve consistency across the codebase and reduce external dependencies.

Apply this diff to use LazyLock:

-use lazy_static::lazy_static;
+use std::sync::LazyLock;

Then update the lazy initialization in format_project_name (around line 314):

-    lazy_static! {
-        static ref DATE_REGEX: Regex = Regex::new(r"\{date(?::([^}]+))?\}").unwrap();
-        static ref TIME_REGEX: Regex = Regex::new(r"\{time(?::([^}]+))?\}").unwrap();
-        static ref MOMENT_REGEX: Regex = Regex::new(r"\{moment(?::([^}]+))?\}").unwrap();
-        static ref AC: aho_corasick::AhoCorasick = {
+    static DATE_REGEX: LazyLock<Regex> = LazyLock::new(|| Regex::new(r"\{date(?::([^}]+))?\}").unwrap());
+    static TIME_REGEX: LazyLock<Regex> = LazyLock::new(|| Regex::new(r"\{time(?::([^}]+))?\}").unwrap());
+    static MOMENT_REGEX: LazyLock<Regex> = LazyLock::new(|| Regex::new(r"\{moment(?::([^}]+))?\}").unwrap());
+    static AC: LazyLock<aho_corasick::AhoCorasick> = LazyLock::new(|| {
             aho_corasick::AhoCorasick::new(&[
                 "{recording_mode}",
                 "{mode}",
                 "{target_kind}",
                 "{target_name}",
             ])
             .expect("Failed to build AhoCorasick automaton")
-        };
-    }
+    });

Based on learnings


263-377: Consider adding unit tests for format_project_name.

This is a core public function exposed as a Tauri command with complex formatting logic involving multiple token replacements. Unit tests would help ensure correctness and prevent regressions, especially for edge cases like:

  • Empty or missing template
  • Custom date/time formats with moment syntax
  • All placeholder combinations
  • Special characters in target names

Example test structure:

#[cfg(test)]
mod format_project_name_tests {
    use super::*;
    use chrono::TimeZone;

    #[test]
    fn test_default_template() {
        let dt = chrono::Local.with_ymd_and_hms(2025, 11, 12, 15, 23, 0).unwrap();
        let result = format_project_name(
            None,
            "Built-in Retina Display",
            "Display",
            RecordingMode::Instant,
            Some(dt),
        );
        assert!(result.contains("Built-in Retina Display"));
        assert!(result.contains("Display"));
        assert!(result.contains("2025-11-12"));
    }

    #[test]
    fn test_custom_moment_format() {
        let dt = chrono::Local.with_ymd_and_hms(2025, 11, 12, 15, 23, 0).unwrap();
        let result = format_project_name(
            Some("{moment:YYYY-MM-DD HH:mm}"),
            "Test",
            "Window",
            RecordingMode::Studio,
            Some(dt),
        );
        assert!(result.contains("2025-11-12 15:23"));
    }

    #[test]
    fn test_all_placeholders() {
        let result = format_project_name(
            Some("{recording_mode} {mode} {target_kind} {target_name}"),
            "Chrome",
            "Window",
            RecordingMode::Studio,
            None,
        );
        assert_eq!(result, "Studio studio Window Chrome");
    }
}

593-593: Consider renaming target_name field to project_name for clarity.

The target_name field in InProgressRecordingCommon is now populated with the formatted project_name rather than the raw capture target name. This semantic mismatch could confuse future maintainers. While this works functionally, renaming the field to project_name throughout the structs (InProgressRecordingCommon, CompletedRecording) would better reflect its actual purpose.

Note: This would be a broader refactor touching multiple files and is not urgent.

📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 56996e2 and 1cfe4a3.

⛔ Files ignored due to path filters (1)
  • Cargo.lock is excluded by !**/*.lock
📒 Files selected for processing (3)
  • apps/desktop/src-tauri/Cargo.toml (4 hunks)
  • apps/desktop/src-tauri/src/recording.rs (6 hunks)
  • apps/desktop/src/utils/tauri.ts (2 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • apps/desktop/src/utils/tauri.ts
🧰 Additional context used
📓 Path-based instructions (1)
**/*.rs

📄 CodeRabbit inference engine (AGENTS.md)

**/*.rs: Format Rust code using rustfmt and ensure all Rust code passes workspace-level clippy lints.
Rust modules should be named with snake_case, and crate directories should be in kebab-case.

Files:

  • apps/desktop/src-tauri/src/recording.rs
🧬 Code graph analysis (1)
apps/desktop/src-tauri/src/recording.rs (1)
crates/utils/src/lib.rs (3)
  • ensure_dir (16-19)
  • moment_format_to_chrono (166-198)
  • ensure_unique_filename (45-91)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
  • GitHub Check: Clippy (aarch64-apple-darwin, macos-latest)
🔇 Additional comments (2)
apps/desktop/src-tauri/Cargo.toml (1)

63-63: All three new dependencies are properly configured and verified.

The workspace dependency aho-corasick = "1.1.4" is correctly defined in the root Cargo.toml (line 49), and the reference at line 118 (aho-corasick.workspace = true) is valid. All three new dependencies are stable, current, and free of known security issues:

  • regex = "1.10.4" — Well above the CVE-2022-24713 fix threshold (1.5.5)
  • sanitize-filename = "0.6.0" — Latest stable version
  • aho-corasick — Properly defined in workspace and compatible

The feature formatting changes are non-functional.

apps/desktop/src-tauri/src/recording.rs (1)

394-416: LGTM! Clean integration of project name formatting.

The workflow correctly:

  1. Formats the project name using the template
  2. Sanitizes colons and filesystem-unsafe characters
  3. Ensures uniqueness in the recordings directory
  4. Creates the directory

The colon replacement (line 408) before sanitization is a good defensive measure for cross-platform compatibility.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 3

🧹 Nitpick comments (2)
apps/desktop/src/routes/(window-chrome)/settings/general.tsx (1)

105-107: Keep TS and Rust default templates in sync

DEFAULT_PROJECT_NAME_TEMPLATE mirrors the Rust DEFAULT_FILENAME_TEMPLATE in recording::format_project_name. To avoid future drift, consider adding a brief comment referencing the Rust constant (or a test that asserts both defaults format the same example) so changes on one side don’t silently desync.

apps/desktop/src-tauri/src/recording.rs (1)

720-724: Field name target_name now holds project name

InProgressRecordingCommon { target_name: project_name, .. } repurposes the target_name field to actually carry the formatted project name. That’s fine behaviorally (the field is only used to plumb a display name through CompletedRecording), but the naming is now misleading.

If you touch this area again, consider renaming the field (and CompletedRecording::target_name) to something like project_name to better reflect its semantics; no urgent change needed.

📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 1cfe4a3 and eb12d2f.

⛔ Files ignored due to path filters (1)
  • Cargo.lock is excluded by !**/*.lock
📒 Files selected for processing (7)
  • apps/desktop/src-tauri/Cargo.toml (4 hunks)
  • apps/desktop/src-tauri/src/general_settings.rs (2 hunks)
  • apps/desktop/src-tauri/src/lib.rs (4 hunks)
  • apps/desktop/src-tauri/src/recording.rs (7 hunks)
  • apps/desktop/src/routes/(window-chrome)/settings/general.tsx (5 hunks)
  • apps/desktop/src/utils/tauri.ts (2 hunks)
  • packages/ui-solid/src/auto-imports.d.ts (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (3)
  • apps/desktop/src-tauri/src/general_settings.rs
  • apps/desktop/src-tauri/Cargo.toml
  • apps/desktop/src/utils/tauri.ts
🧰 Additional context used
🧬 Code graph analysis (3)
apps/desktop/src-tauri/src/recording.rs (2)
crates/utils/src/lib.rs (3)
  • ensure_dir (16-19)
  • moment_format_to_chrono (166-198)
  • ensure_unique_filename (45-91)
apps/desktop/src-tauri/src/lib.rs (12)
  • std (1785-1803)
  • std (1828-1850)
  • format_project_name (3060-3074)
  • new (730-732)
  • new (1163-1167)
  • new (1723-1753)
  • app (1566-1567)
  • app (2629-2629)
  • app (2660-2660)
  • app (2725-2725)
  • app (2731-2731)
  • app (2962-2963)
apps/desktop/src-tauri/src/lib.rs (2)
apps/desktop/src-tauri/src/recording.rs (2)
  • format_project_name (396-469)
  • target_name (266-271)
apps/desktop/src-tauri/src/update_project_names.rs (1)
  • migrate_if_needed (12-37)
apps/desktop/src/routes/(window-chrome)/settings/general.tsx (3)
apps/desktop/src/utils/tauri.ts (1)
  • commands (7-298)
packages/ui-solid/src/Button.tsx (1)
  • Button (40-50)
apps/desktop/src/routes/editor/ui.tsx (1)
  • Input (149-159)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
  • GitHub Check: Clippy (aarch64-apple-darwin, macos-latest)
🔇 Additional comments (6)
packages/ui-solid/src/auto-imports.d.ts (1)

11-11: LGTM! Auto-generated icon import follows the correct pattern.

The new IconCapAuto declaration is correctly formatted and alphabetically ordered among the other icon imports. Since this file is auto-generated by unplugin-auto-import, the addition appears consistent with the tooling's expected output.

apps/desktop/src/routes/(window-chrome)/settings/general.tsx (3)

9-22: New imports and hooks look consistent with usage

Collapsible, createSignal, and onMount are all used in DefaultProjectNameCard; nothing appears unused or mis-imported. No changes needed here.


774-835: Collapsible “How to customize?” section aligns with backend placeholders

The placeholder descriptions ({recording_mode}, {mode}, {target_kind}, {target_name}, {date}, {time}, {moment:…}) match the Rust implementation of format_project_name and the moment_format_to_chrono behavior. This should give users an accurate mental model of what’s supported.


922-944: Excluded Windows header layout fix is correct

Adding flex-shrink-0 to the action container prevents the reset/add buttons from compressing or wrapping in narrow viewports, which addresses the earlier text spill without side effects elsewhere in the card.

apps/desktop/src-tauri/src/lib.rs (1)

2302-2304: format_project_name Tauri command wiring looks correct

The new format_project_name command is registered in the specta builder and cleanly delegates to recording::format_project_name, converting Option<String>/String arguments into the Option<&str>/&str expected by the core function. This should interoperate correctly with the generated TS bindings and the frontend calls in utils/tauri.ts.

Also applies to: 3058-3074

apps/desktop/src-tauri/src/recording.rs (1)

486-511: New project-name templating and filename derivation look correct

The new start_recording flow:

  • Derives project_name via format_project_name, using default_project_name_template when present and falling back to the hard-coded default.
  • Builds a filesystem-safe, unique directory name by:
    • Replacing : with .,
    • Passing through sanitize_filename,
    • Appending .cap,
    • Running ensure_unique_filename under app_data_dir()/recordings.

This cleanly separates human-readable naming from the underlying folder layout and avoids collisions. The subsequent ensure_dir(&recording_dir) + RecordingMeta { pretty_name: project_name.clone(), .. } wiring is consistent with downstream uses (uploads, editor, listing).

Comment on lines +26 to 33
use cap_utils::{ensure_dir, moment_format_to_chrono, spawn_actor};
use futures::{FutureExt, stream};
use lazy_static::lazy_static;
use regex::Regex;
use serde::{Deserialize, Serialize};
use specta::Type;
use std::borrow::Cow;
use std::{
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

format_project_name implementation is solid; fix minor time-format doc mismatch

The new format_project_name helper is well-structured:

  • Uses a pre-built Aho-Corasick automaton for {recording_mode}, {mode}, {target_kind}, {target_name} replacements.
  • Supports {date}, {time}, and {moment} with optional custom moment-style formats, mapping them via moment_format_to_chrono before passing to chrono::DateTime::format.
  • Keeps a sensible default template ({target_name} ({target_kind}) {date} {time}) that matches the TS DEFAULT_PROJECT_NAME_TEMPLATE.

One minor nit: the default time format in code is %I:%M %p (Line 451), which produces zero-padded hours (e.g., "03:23 PM"), but the doc comment and UI examples show "3:23 PM". To avoid confusion either:

  • Change the default to %-I:%M %p to match the example, or
  • Adjust the example/docs to show a zero-padded hour.

Functionally everything else looks correct.

Also applies to: 355-469

🤖 Prompt for AI Agents
In apps/desktop/src-tauri/src/recording.rs around lines 355-469 (imports are at
top around 26-33), the default time format uses "%I:%M %p" which zero-pads hours
(e.g., "03:23 PM") but the doc comment and UI examples show a non-padded hour
("3:23 PM"); change the default time format string to "%-I:%M %p" to produce
non-padded hours and update the nearby doc comment/example if present so they
match the new default.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

♻️ Duplicate comments (2)
apps/desktop/src-tauri/src/update_project_names.rs (2)

27-34: Critical: Migration flag still set on failure (past issue remains)

The past review comment correctly identified that lines 27-34 mark the migration as complete even when migrate returns an error. This means:

  • If migration fails for any reason (permissions, conflicts, etc.), the flag is still set
  • Future app launches will never retry the migration
  • Users will permanently have UUID-based folders

100-138: Major: Partial failures still swallowed (past issue remains)

The past review correctly identified that this function returns Ok(()) even when failed > 0. Combined with the flag-setting issue in migrate_if_needed, a single failure permanently blocks future migration attempts.

The detailed performance logging (wall time, averages, top slowest projects) is excellent for observability.

📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between eb12d2f and ffbf6b8.

📒 Files selected for processing (1)
  • apps/desktop/src-tauri/src/update_project_names.rs (1 hunks)
🧰 Additional context used
🧬 Code graph analysis (1)
apps/desktop/src-tauri/src/update_project_names.rs (3)
apps/desktop/src-tauri/src/lib.rs (12)
  • std (1785-1803)
  • std (1828-1850)
  • recordings_path (3016-3020)
  • app (1566-1567)
  • app (2629-2629)
  • app (2660-2660)
  • app (2725-2725)
  • app (2731-2731)
  • app (2962-2963)
  • new (730-732)
  • new (1163-1167)
  • new (1723-1753)
crates/project/src/meta.rs (1)
  • load_for_project (147-153)
crates/utils/src/lib.rs (1)
  • ensure_unique_filename (45-91)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
  • GitHub Check: Clippy (aarch64-apple-darwin, macos-latest)
🔇 Additional comments (5)
apps/desktop/src-tauri/src/update_project_names.rs (5)

141-167: LGTM: UUID project collection logic is sound

The async directory enumeration correctly filters for UUID-formatted .cap directories using the validation helper. Error propagation is appropriate.


175-204: LGTM: Per-project migration logic handles errors appropriately

The function properly loads metadata, migrates the filename, and returns appropriate results (Migrated/Skipped) based on whether the path changed. Error logging includes context.


211-211: Verify the colon pre-replacement before sanitization

The code replaces colons with periods before calling sanitize_filename::sanitize. This enforces a specific formatting choice (e.g., timestamps like "2024-01-01 12:00:00" become "2024-01-01 12.00.00").

Since sanitize_filename would handle colons automatically (possibly differently per platform), verify whether this pre-replacement is:

  1. Intentional to maintain consistent readability across platforms
  2. Redundant and could be removed
  3. Incorrect and should use sanitize's default handling

Consider requesting clarification from the PR author or checking if there's a design document explaining the naming format.


235-251: LGTM: UUID validation is correct and efficient

The function correctly validates:

  • Overall length (36 for UUID + 4 for ".cap")
  • Hyphen positions at indices 8, 13, 18, 23 (standard UUID format: 8-4-4-4-12)
  • All characters are ASCII hex digits or hyphens

The name fast_is_project_filename_uuid accurately reflects the optimized approach (byte-level checks before character iteration).


253-279: LGTM: Test coverage validates key scenarios

The tests cover:

  • Valid UUID filenames (varied hex, all-zeros edge case)
  • Invalid formats (non-UUID string, wrong/missing extension, invalid hex character)

Coverage is adequate for the validation logic. Optional enhancements could include wrong hyphen positions or length variations, but current tests are sufficient.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🧹 Nitpick comments (2)
crates/utils/src/lib.rs (2)

45-100: Clarify failure behavior and validate attempts in ensure_unique_filename*_with_attempts.

The core logic looks solid, but a couple of edge cases are underspecified:

  • ensure_unique_filename_with_attempts accepts any i32 for attempts. For attempts <= 0, the loop will error immediately (after at most one probe) with "Too many filename conflicts", even when there are no real conflicts.
  • The doc comment on ensure_unique_filename promises “Returns the unique filename that doesn't conflict with existing files” but doesn’t mention that the function can fail when the suffix limit is exceeded.

Consider tightening this by:

  • Validating attempts at the top (e.g., debug_assert!(attempts > 0) or returning an explicit error if attempts <= 0), and
  • Updating the docs to describe the error case (and that attempts bounds the highest numeric suffix tried).

Optionally, if base_filename is always expected to be a bare file name (no separators), a debug_assert!(!base_filename.contains(std::path::MAIN_SEPARATOR)) would encode that assumption.


209-231: Extend tests to cover documented edge cases (e.g., ISO week and invalid/unknown tokens).

The current test nicely exercises a mixed format and the borrowed/unchanged path. Given the richer doc examples, you might want to add:

  • A test for the ISO week example (once the implementation or docs are corrected) so the mismatch can’t regress silently.
  • One or two tests around “near misses” (e.g., strings containing partial tokens or literals adjacent to tokens) to lock in the LeftmostLongest behavior.

This would make the behavior of moment_format_to_chrono much clearer and future refactors safer.

📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 81d395c and 2f5a267.

📒 Files selected for processing (2)
  • apps/desktop/src-tauri/src/update_project_names.rs (1 hunks)
  • crates/utils/src/lib.rs (2 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • apps/desktop/src-tauri/src/update_project_names.rs
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
  • GitHub Check: Clippy (aarch64-apple-darwin, macos-latest)

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

♻️ Duplicate comments (2)
crates/utils/src/lib.rs (1)

114-182: Address moment.js compatibility confusion flagged in previous review.

The previous review flagged that this function claims to convert "moment template format" but uses incompatible token semantics. This concern was not fully addressed:

  • Moment.js convention: DDD/DDDD = day-of-year (1-365, 001-365); ddd/dddd = weekday names
  • This implementation: DDD/DDDD = weekday names; day-of-year tokens are unsupported

The current documentation still refers to "moment template format" (line 114) without clarifying this is a custom subset with different semantics. Users expecting moment.js compatibility will encounter unexpected behavior.

Based on previous review comments, either:

  1. Update the function description and docs to explicitly state this is a "moment-style subset" with a clear notice about the divergence:
-/// Converts user-friendly moment template format strings to chrono format strings.
+/// Converts moment-style template format strings to chrono format strings.
 ///
-/// This function translates common template format patterns to chrono format specifiers,
-/// allowing users to write intuitive date/time formats that get converted to chrono's format.
+/// This function translates a custom subset of date/time patterns to chrono format specifiers.
+/// 
+/// **Note**: This is NOT fully compatible with moment.js. Notably, `DDD`/`DDDD` map to 
+/// weekday names here, whereas in moment.js they represent day-of-year. Day-of-year and 
+/// ISO week tokens are not supported.
  1. Or realign the tokens to match moment.js if compatibility is important (add ddd/dddd for weekdays, repurpose DDD/DDDD for day-of-year).
apps/desktop/src/routes/(window-chrome)/settings/general.tsx (1)

9-9: Default project name card wiring looks solid; consider debouncing preview updates

The new DefaultProjectNameCard is well-integrated: the DEFAULT_PROJECT_NAME_TEMPLATE fallback, value/onChange wiring into defaultProjectNameTemplate, Save/Reset behavior, and the help section with copyable placeholders all read correctly, and the Save handler now correctly awaits persistence and preview updates.

One remaining improvement is avoiding a Tauri round-trip on every keystroke in onInput via updatePreview(e.currentTarget.value). A small trailing-edge debounce (e.g., 200–300ms) would reduce redundant formatProjectName calls for fast typers and also mitigate the chance of a slower earlier call overwriting a newer preview.

For example:

 function DefaultProjectNameCard(props: {
@@
-	const [momentExample, setMomentExample] = createSignal("");
+	const [momentExample, setMomentExample] = createSignal("");
+	let previewTimeoutId: number | undefined;
@@
-	async function updatePreview(val = inputValue()) {
+	async function updatePreview(val = inputValue()) {
 		const formatted = await commands.formatProjectName(
 			val,
@@
 		setPreview(formatted);
 	}
+
+	function schedulePreviewUpdate(val: string) {
+		if (previewTimeoutId !== undefined) {
+			clearTimeout(previewTimeoutId);
+		}
+		previewTimeoutId = window.setTimeout(() => {
+			// Best-effort; log if something goes wrong instead of throwing in the UI event loop.
+			void updatePreview(val).catch((error) => {
+				console.error("Failed to update project name preview", error);
+			});
+		}, 250);
+	}
@@
-					onInput={(e) => {
-						setInputValue(e.currentTarget.value);
-						updatePreview(e.currentTarget.value);
-					}}
+					onInput={(e) => {
+						const next = e.currentTarget.value;
+						setInputValue(next);
+						schedulePreviewUpdate(next);
+					}}

This keeps the explicit await updatePreview(...) calls for Reset/Save semantics while making the live preview cheaper and more robust during typing.

Also applies to: 105-107, 546-551, 638-838

🧹 Nitpick comments (1)
crates/utils/src/lib.rs (1)

217-239: Consider expanding test coverage.

The current tests only cover moment_format_to_chrono with basic scenarios. Consider adding:

  • Tests for ensure_unique_filename and ensure_unique_filename_with_attempts to verify:
    • Behavior when file doesn't exist (returns base filename)
    • Conflict resolution (appending numbers)
    • Extension handling (files with/without extensions)
    • Max attempts limit enforcement
  • Additional moment_format_to_chrono tests for:
    • Overlapping pattern handling (e.g., "MMMM" vs "MMM" precedence)
    • Mixed token and literal text
📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 2f5a267 and 03d737b.

📒 Files selected for processing (3)
  • apps/desktop/src-tauri/src/update_project_names.rs (1 hunks)
  • apps/desktop/src/routes/(window-chrome)/settings/general.tsx (5 hunks)
  • crates/utils/src/lib.rs (2 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • apps/desktop/src-tauri/src/update_project_names.rs
🧰 Additional context used
🧬 Code graph analysis (1)
apps/desktop/src/routes/(window-chrome)/settings/general.tsx (3)
apps/desktop/src/utils/tauri.ts (1)
  • commands (7-298)
packages/ui-solid/src/Button.tsx (1)
  • Button (40-50)
apps/desktop/src/routes/editor/ui.tsx (1)
  • Input (149-159)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
  • GitHub Check: Clippy (aarch64-apple-darwin, macos-latest)
🔇 Additional comments (2)
crates/utils/src/lib.rs (1)

153-153: No action needed — chrono's %P specifier is cross-platform compatible.

The web search confirms that Chrono implements the %P format specifier natively (not delegated to platform libc), ensuring consistent lowercase "am"/"pm" output across Windows, macOS, and Linux. The documentation mapping of lowercase a to %P is correct and safe.

apps/desktop/src/routes/(window-chrome)/settings/general.tsx (1)

922-944: Excluded windows action row layout tweak is safe and improves resilience

Changing the action container to class="flex flex-shrink-0 gap-2" is a low-risk layout fix: it keeps the Reset/Add buttons from shrinking and prevents the "Reset to Default" label from wrapping or clipping at narrower widths, without altering any behavior or event handling.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (1)
apps/desktop/src-tauri/src/lib.rs (1)

3062-3078: LGTM! Command implementation is correct.

The command properly delegates to recording::format_project_name with correct parameter type conversions. The async marker is unnecessary since no async operations are performed, but this is a minor inefficiency and may be intentional for consistency with other commands.

If desired, you can remove the async marker for a slight performance improvement:

-#[tauri::command]
-#[specta::specta]
-async fn format_project_name(
+#[tauri::command(async)]
+#[specta::specta]
+fn format_project_name(
     template: Option<String>,
     target_name: String,
     target_kind: String,
     recording_mode: RecordingMode,
     datetime: Option<chrono::DateTime<chrono::Local>>,
 ) -> String {

Note: The #[tauri::command(async)] attribute makes the command callable asynchronously from the frontend while keeping the Rust implementation synchronous.

📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 9331f84 and bd32090.

📒 Files selected for processing (1)
  • apps/desktop/src-tauri/src/lib.rs (4 hunks)
🧰 Additional context used
🧬 Code graph analysis (1)
apps/desktop/src-tauri/src/lib.rs (2)
apps/desktop/src-tauri/src/recording.rs (2)
  • format_project_name (396-469)
  • target_name (266-271)
apps/desktop/src-tauri/src/update_project_names.rs (1)
  • migrate_if_needed (16-41)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
  • GitHub Check: Clippy (aarch64-apple-darwin, macos-latest)
🔇 Additional comments (3)
apps/desktop/src-tauri/src/lib.rs (3)

28-28: LGTM! Module declaration is appropriate.

The new update_project_names module is correctly declared and used in the setup function to perform one-time project folder migration.


2447-2450: Past review concern has been addressed.

The migration error handling has been updated since the previous review. The code now correctly catches and logs migration errors without aborting app startup, which is appropriate for this cosmetic one-time rename operation.


2303-2303: LGTM! Command registration is correct.

The format_project_name command is properly registered in the specta builder and will be available to the frontend via TypeScript bindings.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant